home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / STUTTGART / FROMUTS / UNIXLIB37B / clib_h_alloca < prev    next >
Encoding:
Text File  |  1992-02-17  |  173 b   |  13 lines

  1. /* alloca.h (c) Copyright 1991 H.Rogers */
  2.  
  3. #ifndef __ALLOCA_H
  4. #define __ALLOCA_H
  5.  
  6. #ifndef __SYS_TYPES_H
  7. #include "sys/types.h"
  8. #endif
  9.  
  10. extern void *alloca(size_t);
  11.  
  12. #endif
  13.